Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.12.17
FeedGetInformation(Byte[],Int32,Int32) Method
See Also 
Leadtools.Codecs Namespace > RasterCodecs Class > FeedGetInformation Method : FeedGetInformation(Byte[],Int32,Int32) Method




data
The image file data.
offset
Offset from the beginning of the buffer to where the image data starts.
length
Total size (in bytes) of the image data.
Supplies image data to the file information process from a buffer that you provide.

Syntax

Visual Basic (Declaration) 
Overloads Public Function FeedGetInformation( _
   ByVal data() As Byte, _
   ByVal offset As Integer, _
   ByVal length As Integer _
) As Boolean
Visual Basic (Usage)Copy Code
Dim instance As RasterCodecs
Dim data() As Byte
Dim offset As Integer
Dim length As Integer
Dim value As Boolean
 
value = instance.FeedGetInformation(data, offset, length)
C# 
public bool FeedGetInformation( 
   byte[] data,
   int offset,
   int length
)
Managed Extensions for C++ 
public: bool FeedGetInformation( 
   byte[] data,
   int offset,
   int length
) 
C++/CLI 
public:
bool FeedGetInformation( 
   array<byte> data,
   int offset,
   int length
) 

Parameters

data
The image file data.
offset
Offset from the beginning of the buffer to where the image data starts.
length
Total size (in bytes) of the image data.

Return Value

true if the get information process requires more data, false otherwise. When this method returns false, you can break out of the loop and call StopFeedGetInformation to obtain the CodecsImageInfo object containing the information of the image file.

Example

For an example, refer to StartFeedGetInformation.

Remarks

Use this method with the StartFeedGetInformation and StopFeedGetInformation methods.

For a description of how the methods relate to each other, refer to StartFeedGetInformation.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also